ServerConnectEvent

class ServerConnectEvent(val ip: String, val port: Int) : Event(source)

Non-cancellable event, called at the head of net.minecraft.client.multiplayer.GuiConnecting.connect, therefore, in the event that the player connects to a server, this event is called along-side the player clicking the connect to server button.

Constructors

Link copied to clipboard
constructor(ip: String, port: Int)

Properties

Link copied to clipboard
val ip: String

The IP address of the server.

Link copied to clipboard
val port: Int

The port of the server.

Link copied to clipboard
val serverData: ServerData

The ServerData object of the server being connected to.